
{{tag>matériel imprimante,}}
=====DYMO LabelWriter=====

{{:dymo.jpeg}}

L'étiqueteuse DYMO LabelWriter est utilisable assez simplement sous Ubuntu grâces aux pilotes fournis.


=====Installation=====

<note important>Ne brancher l'imprimante qu'après avoir installé les pilotes</note>

Depuis la 14.04, il existe le paquet **[[apt>printer-driver-dymo]]** pour simplifier installation
====Prérequis====

Installer d'abord les paquetages suivants : 

[[apt://libcupsimage2-dev]] et [[apt://gcc]] [[apt://libcups2-dev ]] [[apt://libcairo2-dev]] et [[apt://g++]]

<code>sudo apt-get install libcupsimage2-dev gcc libcups2-dev libcairo2-dev g++</code>

====Téléchargement & Installation des pilotes====

Nouvelle version **dymo-cups 1.4.0.5** (février 2012)

<code> wget http://download.dymo.com/Software/Linux/dymo-cups-drivers-1.4.0.tar.gz </code>

extraire les fichiers dans le répertoire de votre choix

<code> tar -xvf dymo-cups-drivers-1.4.0.tar.gz 
cd dymo-cups-drivers-1.4.0/</code>

puis  **dans le dossier dymo-cups**

<code>./configure 
make 
sudo make install
</code>

Brancher l'imprimante

L'installation et la configuration se fera tout seul.

====Configuration====

Pour pouvoir utiliser les formats d'étiquettes il faut configurer ceci dans CUPS :

[[http://localhost:631]]

Puis dans Imprimantes > Définir les options de l'imprimante > Général > Media Size

{{:dymo-cups2.jpeg|}}


=====Ubuntu 11.10=====

Il existe une erreur de compilation pour la version 11.10

 il faut modifier le fichier **Halftoning.h** dans /dymo-cups-drivers-1.2.0/common/src 

et le fichier  **LabelWriterDriver.h** dans /dymo-cups-drivers-1.2.0/src/lw

et rajouter ceci : 

<code>#include <stdlib.h></code>

... juste au-dessus de la ligne «#include» existante au début du fichier.

<code>// -*- C++ -*-
// $Id: Halftoning.h 4759 2008-06-19 19:02:27Z vbuzuev $

// DYMO LabelWriter Drivers
// Copyright (C) 2008 Sanford L.P.

// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.


#ifndef h4D098F6A_47C6_4e9d_BD74_2DC6034F8EEF
#define h4D098F6A_47C6_4e9d_BD74_2DC6034F8EEF

#include <stdlib.h>
#include "CommonTypedefs.h"

//namespace dymo
namespace DymoPrinterDriver
{
</code>

Discussion sur le forum : [[http://forum.ubuntu-fr.org/viewtopic.php?pid=6868681#p6868681]]
------------------------

Liens

http://blog.cybermonde.org/post/2009/04/08/Dymo-LabelWriter-Duo-sous-Ubuntu et

https://ubuntuforums.org/showthread.php?t=861781

[[https://dymo.custhelp.com/cgi-bin/dymo.cfg/php/enduser/std_adp.php?p_faqid=101#lw_linux]]
 

